home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 SRC / Tools / modulator / Templates / object_method < prev    next >
Text File  |  1995-12-21  |  229b  |  17 lines

  1.  
  2. static char $abbrev$_$method$__doc__[] = 
  3. ""
  4. ;
  5.  
  6. static PyObject *
  7. $abbrev$_$method$(self, args)
  8.     $abbrev$object *self;
  9.     PyObject *args;
  10. {
  11.     if (!PyArg_ParseTuple(args, ""))
  12.         return NULL;
  13.     Py_INCREF(Py_None);
  14.     return Py_None;
  15. }
  16.  
  17.